home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best of Shareware
/
Best of PC Windows Shareware 1.0 - Wayzata Technology (7111) (1993).iso
/
pc
/
dos
/
networks
/
tpapi
/
nwtts.pa1
< prev
next >
Wrap
Text File
|
1992-03-02
|
3KB
|
75 lines
{!R! FONT 15; FTMD 15; EXIT;}
{***************************************************************************}
{** Program : NWTTS **}
{***************************************************************************}
{** Version : 1.3 ** Started : 11/11/91 ** Ended : / / **}
{***************************************************************************}
{******************************** Description ******************************}
{***************************************************************************}
{** OOP library for Netware API **}
{** **}
{** This unit forms the second level object : TTS **}
{** This object is a descandent of : NETWARE **}
{** **}
{** **}
{** **}
{** **}
{***************************************************************************}
{******************************** Information ******************************}
{***************************************************************************}
{** Provides Netware Transaction Tracking Services **}
{** **}
{** **}
{** **}
{** This code is (c) 1991,1992 Tony Covelli **}
{** Portions (c) Novell Inc, **}
{** **}
{** **}
{***************************************************************************}
{$I NETWARE.INC}
UNIT NWTTS;
INTERFACE
USES
netware, nwvar;
TYPE
pTTSOBJ = ^TTSOBJ;
TTSOBJ = object (NetwareOBJ)
CONSTRUCTOR Init;
FUNCTION TTSAbortTransaction : WORD;
FUNCTION TTSBeginTransaction : WORD;
FUNCTION TTSEndTransaction (VAR TransactionNumber) : WORD;
FUNCTION TTSGetApplicationThresholds (VAR LogicalRecordLockThreshold;
VAR PhysicalRecordLockThreshold) : WORD;
FUNCTION TTSGetWorkStationThresholds (VAR LogicalRecordLockThreshold;
VAR PhysicalRecordLockThreshold) : WORD;
FUNCTION TTSIsAvailable : WORD;
FUNCTION TTSSetApplicationThresholds (LogicalRecordLockThreshold,
PhysicalRecordLockThreshold : BYTE) : WORD;
FUNCTION TTSSetWorkStationThresholds (LogicalRecordLockThreshold,
PhysicalRecordLockThreshold : BYTE) : WORD;
FUNCTION TTSTransactionStatus (VAR TransactionNumber) : WORD;
DESTRUCTOR Done; VIRTUAL;
END;